The <COMMENT>
element can be used to 'comment' out text. As such, it is similar to the <!-- ... -->
element.
Any text placed between the <COMMENT>
and </COMMENT>
elements will not render on the screen, allowing comments to be placed in HTML documents.
<COMMENT>This text won't render.
I can say what I like here,
it wont appear</COMMENT>
Would not render on the screen.
NOTE : This element is only supported by the Internet Explorer and Mosaic.